home *** CD-ROM | disk | FTP | other *** search
- // copyright 1993 Michael B. Johnson; some portions copyright 1994, MIT
- // see COPYRIGHT for reuse legalities
- //
-
-
- #import <appkit/appkit.h>
-
- //#import "WWTCLInterp.h"
- // if I only include the above, I get a duplicate warning, so...
- #import "WWTCLKit.h"
-
- @interface WWInterp:WWTCLInterp
- {
- BOOL interpSetup;
- List *wwVarList;
- id runTime; // this is so the sample generator info can be accessed
- }
-
- - addVarTypeInfo:newVarTypeInfo;
- - (BOOL)enumExists:(const char *)enumVarName;
- - (char *)setVar:(char *)variableName toReadOnlyValue:(char *)newValue;
- - (char *)setVar2:(char *)variableName1 :(char *)variableName2 toReadOnlyValue:(char *)newValue;
- - registerCurrentSampleGeneratorName:(const char *)newCurrentSampleGeneratorName weight:(float)weight;
- - setCurrentSampleGeneratorName:(const char *)newCurrentSampleGeneratorName;
- - setRunTime:runTimeObject;
-
- @end
-